home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / ddjcomp.lha / ashford / files.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-15  |  347 b   |  13 lines

  1. #define IN_BUF_SIZE     512
  2. #define OUT_BUF_SIZE    512
  3.  
  4. void OpenOutputFile (char *);
  5. long OpenInputFile (char *);
  6. int ReadInputFile (void);
  7. unsigned ReadBinaryInput (void);
  8. void WriteOutputFile (int);
  9. void CloseInputFile (void);
  10. void CloseOutputFile (void);
  11. unsigned long GetOutputLength (void);
  12. unsigned long GetInputLength (void);
  13.